Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/scripts/

app.js /cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/scripts/app.js
210 Views
0 Comments
let game1
const puzzleDIV = document.querySelector('#puzzle');
const remainingDIV = document.querySelector('#guesses');

window.
hangman.js /cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/scripts/hangman.js
214 Views
0 Comments
class Hangman {
constructor(word, remainingGuesses){
this.word = word.toLowerCase().split('');
this.remainin
request.js /cody/swapnilsparsh/30DaysOfJavaScript/36 - Hangman/scripts/request.js
215 Views
0 Comments
const getPuzzle = async (wordCount) => {
const response = await fetch(`https://puzzle.mead.io/puzzle?wordCount=${wordCount}`